home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / ltick03 / announce.h < prev    next >
Text File  |  1993-06-04  |  534b  |  19 lines

  1. /*
  2.  *    Announce engine header
  3.  *    (LazyTick project)
  4.  *
  5.  *    Public Domain. May be copied and sold freely.
  6.  */
  7.  
  8. #define ANNDLEN     BBSSTR+300     /* max full announce line len, MUST BE > BBSSTR+ANNSKIP */
  9. #define ANNSKIP        30             /* indentation */
  10. #define ANNLLEN     ANNSKIP+45     /* line len, MUST BE > ANNSKIP */
  11.  
  12. typedef struct _ticlog {
  13.     char group[BBSSTR];
  14.     char display[ANNDLEN];
  15.     struct _ticlog *next;
  16. } ANNTICK;
  17.  
  18. void announce_tic(BTICFILE *tic, char *group);
  19. int process_announce(char *group, char *arearad, char *footer);